home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / MODEMPRO / QMW110P.ZIP;1 / QMWIN110.EXE / FAXRECV.SC$ < prev    next >
Encoding:
Text File  |  1994-05-07  |  518 b   |  19 lines

  1. ' This script will wait for incoming faxes and receive them in the
  2. ' background.  It is similar to the Fax/Auto receive option but you
  3. ' can run this script while QmodemPro for Windows is minimized.
  4.  
  5. dim NewFaxes as integer
  6. NewFaxes = 0
  7.  
  8. do
  9.   cls
  10.   print "New faxes received so far: "; NewFaxes
  11.   print
  12.   print "(Select Scripts/Execute or press the RunScript button to quit.)"
  13.   print "Waiting for incoming FAX call..."
  14.   waitfor "RING"
  15.   if receivefax then
  16.     NewFaxes = NewFaxes + 1
  17.   end if
  18. loop
  19.